projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58008cb
)
tools: genboardscfg: move buildman path to first
author
Peng Fan
<
[email protected]
>
Tue, 24 Jul 2018 06:27:18 +0000
(14:27 +0800)
committer
Tom Rini
<
[email protected]
>
Mon, 30 Jul 2018 11:18:49 +0000
(07:18 -0400)
To system which has kconfiglib installed, genboardscfg will
use system kconfiglib, we need it use U-Boot owned version,
so move the buildman path to first.
Signed-off-by: Peng Fan <
[email protected]
>
Cc: Masahiro Yamada <
[email protected]
>
Cc: Simon Glass <
[email protected]
>
Cc: Tom Rini <
[email protected]
>
Acked-by: Masahiro Yamada <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
tools/genboardscfg.py
patch
|
blob
|
history
diff --git
a/tools/genboardscfg.py
b/tools/genboardscfg.py
index 0648472af0469514ad085fa9d9883b92f557894a..e9bbd15e15a937686d19f4ba6eb385e37fb5369b 100755
(executable)
--- a/
tools/genboardscfg.py
+++ b/
tools/genboardscfg.py
@@
-24,7
+24,7
@@
import sys
import tempfile
import time
-sys.path.
append(
os.path.join(os.path.dirname(__file__), 'buildman'))
+sys.path.
insert(1,
os.path.join(os.path.dirname(__file__), 'buildman'))
import kconfiglib
### constant variables ###